How to show and hide password In Oracle Apex ??<strong></strong><strong> How to show and hide password In Oracle Apex ??</strong> <strong> 1, Goto P9999_PASSWORD Item >> Icon >> Paste the following code-</strong> fa-key<strong> 2. Advanced >> Custom Attributes >> Paste the following code-</strong> onchange="htmldb_item_change(this)" onkeydown="if (event.keyCode == 13) document.getElementById('LOGIN').focus();"<strong> 3. Post Text >> Paste the following code-</strong> <i id="pass-status" class="fa fa-eye field-icon" aria-hidden="true" data-amp-onclick="viewPassword()"></i><strong> 4. Goto Page Properties >> Function and Global Variable Declaration >> Paste the following code-</strong> function viewPassword() { var passwordInput = document.getElementById('P9999_PASSWORD'); var passStatus = document.getElementById('pass-status'); if (passwordInput.type == 'password'){ passwordInput.type='text'; passStatus.className='fa fa-eye-slash field-icon'; } else{ passwordInput.type='password'; passStatus.className='fa fa-eye field-icon'; }}<strong> 5. Page Propert…